home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / TAN.C < prev    next >
Text File  |  1991-08-05  |  415b  |  23 lines

  1.  /* tan.c from page 249*/
  2.  #include <stdio.h>
  3.  #include <stdlib.h>
  4.  #include <math.h>
  5.  #define R_TO_D  57.29578        /*radians to degrees */
  6.  main(int argc, char **argv)
  7.  {
  8.     double  result;
  9.     if(argc < 2)
  10.     {
  11.         printf("usage: %s <degree>\n", argv[0]);
  12.  
  13.     }
  14.     else
  15.     {
  16.         result = tan(atof(argv[1]) / R_TO_D);
  17.         if(errno != ERANGE)
  18.         {
  19.             printf("tangent(%s deg.) = %f\n",
  20.             argv[1], result);
  21.         }
  22.     }
  23.  }